.container
容器會自適應寬跟高。.row
會讓內層以flex的方式排版,而.col
就是.row
的flex-item。.row
加入.justify-content-center
,就可以讓列元素水平置中。<div class="container">
<div class="row justify-content-center border border-success" style="height:100px;">
<div class="col-4 h-100 border border-primary"></div>
</div>
</div>